home *** CD-ROM | disk | FTP | other *** search
/ .net - The Best of 1999/2000 / netCD Special01.iso / pc / Software / Dreamweaver / dreamw.exe / data1.cab / App_Files / Configuration / Objects / Invisibles / Script.js < prev   
Encoding:
JavaScript  |  1999-12-09  |  724 b   |  20 lines

  1. // Copyright 1999 Macromedia, Inc. All rights reserved.
  2.  
  3. //---------------   GLOBAL VARIABLES   ---------------
  4.  
  5. var helpDoc = MM.HELP_objScript;
  6.  
  7. //---------------     API FUNCTIONS    ---------------
  8.  
  9. function objectTag() {
  10. // Return the html tag that should be inserted
  11.   var len = document.forms[0].script.value.length;
  12.   var selInd = document.forms[0].Language.selectedIndex;
  13.   var scriptLang = document.forms[0].Language.options[selInd].text
  14.   
  15.   if (len > 0 && document.forms[0].script.value.charAt(len - 1) != '\n')
  16.     document.forms[0].script.value = document.forms[0].script.value + '\n';
  17.     
  18.   return '<script language="' + scriptLang + '">\n' + document.forms[0].script.value + '<\/SCRIPT>';
  19. }
  20.